  .mobile-message {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      z-index: 10000000000;
      padding: 20px;
      box-sizing: border-box;
  }
  
  .mobile-logo {
      font-size: 4rem;
      color: #ff4d4d;
      margin-bottom: 20px;
  }
  
  .mobile-title {
      font-size: 2rem;
      margin-bottom: 10px;
      font-weight: bold;
      color: white;
  }
  
  .mobile-text {
      font-size: 1rem;
      color: #aaa;
      max-width: 300px;
      line-height: 1.5;
  }
  
  @media only screen and (max-width: 1100px) {
      .main-content {
          display: none !important; /* Kesinlikle gizle */
      }
      
      .mobile-message {
          display: flex;
      }
      
      body, html {
          overflow: hidden; /* Mobilde kaydırmayı engelle */
      }
  }

      /* Dropdown Styling */
      .dropdown {
        position: relative;
        display: inline-block;
        margin-left: 20px;
      }
    
      .dropbtn {
        background-color: transparent;
        color: white;
        padding: 8px 20px; /* Yazı boyutu küçültüldü */
        font-size: 14px; /* Yazı boyutu küçültüldü */
        height: 39px;
        border: none;
        background-color: #222;
        border-radius: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }
  
      .dropdown-content {
        display: none;
        position: absolute;
        min-width: 800px; /* Grid için genişlik */
        z-index: 1;
        border-radius: 8px;
        overflow: hidden;
        padding: 10px; /* Grid içeriği için padding */
      }
    
      .grid-container {
        display: grid;
        width: 300px;
        grid-template-columns: repeat(2, 1fr); /* 4x4 grid yapısı */
        gap: 3px; /* Kutular arası boşluk */
      }
    
      .grid-container a {
        color: white;
        padding: 10px;
        text-decoration: none;
        display: flex;
        align-items: left;
        justify-content: left;
        background-color: #222;
        border-radius: 5px;
        transition: background-color 0.3s ease, transform 0.2s ease;
      }
    
      .grid-container a:hover {
        background-color: #333;
        box-shadow:0px 8px 16px #444;
        transform: scale(1.05);
      }
    
      .grid-container a i {
        margin-right: 8px;
        margin-top: 3.5px;
      }
    
      .dropdown:hover .dropdown-content {
        display: block;
      }
    
      /* Terms of Use Link */
      .terms-link {
        color: white;
        padding: 9px;
        border-radius: 10px;
        text-decoration: none;
        margin-left: 20px;
        font-size: 14px; /* Yazı boyutu küçültüldü */
            height: 38px;
    transition: all 0.3s ease-in-out;
      }
    
      .terms-link:hover {
        color: #ccc;
        background-color: #444;
      }
    
      /* Right Buttons Styling */
      .right-buttons {
        display: flex;
        margin-bottom: 24px;
        gap: 15px;
        margin-left: auto; /* Sağa yasla */
        margin-right: 20px; /* Sağdan boşluk bırak */
      }
    
      .people-button {
        display: inline-block;
        margin: 2px;
        padding: 12px 15px; /* Buton boyutu küçültüldü */
        font-size: 14px; /* Yazı boyutu küçültüldü */
        color: #fff;
        background-color: #111;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
      }
    
      .people-button:hover {
        background-color: #333;
      }
    
      .people-button:active {
        transform: scale(0.95);
      }
    
      .people-button i {
        margin-right: 8px;
        color: #fff;
      }
    
      /* Navbar Styling */
      .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #222;
        padding: 10px 20px;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
      }
    
      /* Responsive Design */
      @media (max-width: 768px) {
        .navbar {
          flex-wrap: wrap;
          padding: 10px;
        }
    
        .dropdown {
          margin-left: 10px;
        }
    
        .terms-link {
          margin-left: 10px;
        }
    
        .right-buttons {
          margin-left: 0;
          margin-right: 10px;
        }
    
        .people-button {
          padding: 6px 12px;
          font-size: 12px;
        }
    
        .dropdown-content {
          min-width: 250px; /* Mobilde grid genişliği */
        }
    
        .grid-container {
          grid-template-columns: repeat(2, 1fr); /* Mobilde 2x4 grid yapısı */
        }
      }
    

    /* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
body{
    background-color:rgb(11, 11, 11) ;
    overflow-x: hidden;
}
/* Genel scroll stili */
::-webkit-scrollbar {
    width: 17px;
}

::-webkit-scrollbar-track {
    background-color: black;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 10px;
    border: 3px solid black;
}


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;
}
.sidebar{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 78px;
  background: #111;
  padding: 6px 14px;
  z-index: 999999;
  transition: all 0.5s ease;
}
.sidebar.open{
  width: 250px;
}
.sidebar .logo-details{
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar .logo-details .icon{
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name {
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s ease;
  background: linear-gradient(to right, #ff0000,#c30f0f,#b10f0f,#ad1111 50%, #ffffff 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 2px rgba(129, 129, 129, 0.132);
  position: relative;
}

.sidebar .logo-details .logo_name::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name{
  opacity: 1;
}
.sidebar .logo-details #btn{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details #btn{
  text-align: right;
}
.sidebar i{
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}
.sidebar .nav-list{
  margin-top: 20px;
  height: 100%;
}
.sidebar li{
  position: relative;
  margin: 8px 0;
  list-style: none;
}
.sidebar li .tooltip{
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}
.sidebar li:hover .tooltip{
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar.open li .tooltip{
  display: none;
}
.sidebar input{
  font-size: 15px;
  color: #FFF;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #111;
}
.sidebar.open input{
  padding: 0 20px 0 50px;
  width: 100%;
}
.sidebar .bx-search{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  background: #111;
  color: #FFF;
}
.sidebar.open .bx-search:hover{
  background: #111;
  color: #FFF;
}
.sidebar .bx-search:hover{
  background: #FFF;
  color: #111;
}
.sidebar li a{
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #111;
}
.sidebar li a:hover{
  background: #FFF;
}
.sidebar li a .links_name{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.sidebar.open li a .links_name{
  opacity: 1;
  pointer-events: auto;
}
.sidebar li a:hover .links_name,
.sidebar li a:hover i{
  transition: all 0.5s ease;
  color: #111;
}
.sidebar li i{
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}
.sidebar li.profile{
  position: fixed;
  height: 60px;
  width: 78px;
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
  background: #111;
  transition: all 0.5s ease;
  overflow: hidden;
}
.sidebar.open li.profile{
  width: 250px;
}
.sidebar li .profile-details{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.sidebar li img{
  height: 45px;
  width: 45px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}
.sidebar li.profile .name,
.sidebar li.profile .job{
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}
.sidebar li.profile .job{
  font-size: 12px;
}
.sidebar .profile #log_out{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #111;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 0px;
  transition: all 0.5s ease;
}
.sidebar.open .profile #log_out{
  width: 50px;
  background: none;
}
.home-section{
  position: relative;
  background: #E4E9F7;
  min-height: 100vh;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;
  z-index: 2;
}
.sidebar.open ~ .home-section{
  left: 250px;
  width: calc(100% - 250px);
}
.home-section .text{
  display: inline-block;
  color: #111;
  font-size: 25px;
  font-weight: 500;
  margin: 18px
}
@media (max-width: 420px) {
  .sidebar li .tooltip{
    display: none;
  }
}
  

  body {
      margin: 0;
      padding: 0;
      background-color: rgb(11, 11, 11);
      color: white;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .terms-header {
      background: linear-gradient(to bottom, #111, rgb(11, 11, 11));
      padding: 50px 40px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .header-wrapper {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
      flex-direction: column;
  }

  .logo {
      font-size: 3rem;
      color: #ff4d4d;
  }

  .terms-header h1 {
      font-size: 2.2rem;
      color: white;
      margin: 0;
      position: relative;
      padding-bottom: 15px;
  }

  .terms-header h1:after {
      content: "";
      display: block;
      width: 100px;
      height: 3px;
      background: linear-gradient(90deg, #ff4d4d, #f9cb28);
      margin: 10px auto 0;
      border-radius: 3px;
  }

  .terms-container {
      width: 100%;
      padding: 20px 40px;
  }

  .terms-content {
      max-width: 900px;
      margin: 0 auto;
  }

  .terms-text {
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 15px;
  }

  .terms-section {
      margin-bottom: 30px;
  }

  .terms-title {
      font-size: 1.3rem;
      color: white;
      margin-bottom: 15px;
      border-bottom: 1px solid #333;
      padding-bottom: 5px;
  }

  .terms-list {
      font-size: 0.95rem;
      padding-left: 20px;
      margin-top: 10px;
      line-height: 1.6;
  }

  .terms-list li {
      margin-bottom: 8px;
  }

  @media (max-width: 768px) {
      .terms-header {
          padding: 40px 20px;
      }
      
      .terms-container {
          padding: 20px;
      }
      
      .terms-header h1 {
          font-size: 1.8rem;
      }
      
      .terms-title {
          font-size: 1.2rem;
      }
  }

  @media (max-width: 480px) {
      .terms-header h1 {
          font-size: 1.6rem;
      }
      
      .terms-content {
          padding: 0 10px;
      }
      
      .terms-text, .terms-list {
          font-size: 0.9rem;
      }
  }

    .button-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-left: 115px;
    }

   .button-container {
       position: relative;
       width: 330px; /* Buton genişliği */
       height: 400px; /* Buton yüksekliği */
       background-color: #333;
       border-radius: 8px;
       overflow: hidden;
       transition: background-color 0.3s;
       text-decoration: none;
       display: flex;
       flex-direction: column;
   }

    .button-container:hover {
        background-color: #444;
    }

    .button-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .publisher-info {
        display: flex;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 5px;
        width: 100%;
        box-sizing: border-box;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .publisher-img {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        margin-right: 8px;
    }

    .publisher-text {
        color: white;
        font-size: 14px;
        font-weight: bold;
    }

    .logo-container {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 30px;
        color: white;
        transition: transform 0.5s ease;
        display: flex;
        align-items: center;
    }

    .logo-container:hover {
        transform: scale(1.1);
    }

    .logo-text {
        display: none;
        font-size: 14px;
        color: white;
        font-weight: bold;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .logo-container:hover .logo-text {
        display: inline-block;
        opacity: 1;
    }

  .footer-container {
    color: white;
    margin-left: 80px;
    padding: 20px;
    width: 90%; /* Genişlik %95 */
    z-index: 10000;
    position: sticky;
    height: auto; /* Yükseklik otomatik */
    box-sizing: border-box; /* Padding'i genişliğe dahil et */
  }

  .footer-content {
    display: inline-block;
    width: 60%; /* Yazıların genişliği */
    vertical-align: top;
  }

  .footer-content h1 {
    font-size: 20px; /* Başlık boyutu küçültüldü */
    margin-bottom: 10px;
  }

  .footer-content p {
    font-size: 12px; /* Yazı boyutu küçültüldü */
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .footer-links {
    display: inline-block;
    width: 20%; /* Bağlantıların genişliği */
    vertical-align: top;
    margin-left: 20px; /* Yazılar ile bağlantılar arası boşluk */
  }

  .footer-links h1 {
    font-size: 20px;
    color: #d5d5d5;
    margin-bottom: 10px;
  }

  .footer-links a {
    display: block;
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: font-size 0.3s ease;
  }

  .footer-links a:hover {
    font-size: 16px;
    text-decoration: underline;
  }

  .footer-image {
    display: inline-block;
    width: 15%; /* Resim genişliği */
    text-align: right;
  }

  .footer-image img {
    width: 120px;
    border-radius: 8px;
  }

  .footer-copyright {
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
    color: #ddd;
  }
